Conversation
Contributor
There was a problem hiding this comment.
Pull Request Overview
This PR integrates CSharpier and Husky.Net formatting tools, updates VSCode build/format tasks, adds Husky pre-commit hooks, and revises CI workflow to use the dotnet tool manifest.
- Added CSharpier and Husky.Net links in README
- Updated
.vscode/tasks.jsonwith new tasks and debug logging - Configured Husky (.husky/task-runner.json & pre-commit) and adjusted GitHub Actions to use
dotnet tool restore
Reviewed Changes
Copilot reviewed 6 out of 6 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| README.md | Added links for CSharpier and Husky.Net |
| .vscode/tasks.json | Renamed labels, added tool-update and Husky-run tasks, enabled debug logs |
| .husky/task-runner.json | Defined CSharpier and dotnet format pre-commit tasks |
| .husky/pre-commit | Hook to invoke Husky task runner |
| .github/workflows/publish-release.yml | Switched to dotnet tool restore and adjusted log levels |
| .config/dotnet-tools.json | Declared csharpier and husky tools in the manifest |
Comments suppressed due to low confidence (4)
.vscode/tasks.json:5
- [nitpick] Restore the uppercase 'NET' in the label to '.NET Build' for consistency with common naming conventions.
"label": ".Net Build",
.vscode/tasks.json:16
- [nitpick] Use consistent uppercase 'NET' in the task label ('.NET Format') to match other task labels.
"label": ".Net Format",
.github/workflows/publish-release.yml:42
- The pipeline restores only tools in the manifest; add 'dotnet-format' to .config/dotnet-tools.json or reintroduce its installation so 'dotnet format' is available.
dotnet tool restore
.vscode/tasks.json:82
- Remove the trailing comma after the last task in the 'tasks' array; JSON does not allow a comma before the closing bracket.
},
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.